home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / rs0422.zip / CONFIGUR / NODE.H < prev    next >
C/C++ Source or Header  |  1988-08-12  |  411b  |  14 lines

  1. /* Node Structure */
  2.  
  3. struct nodestr {
  4.     char name[64];    /* Name to call it */
  5.     char adr[8];    /* It's address */
  6.     char call[7];    /* AX.25 Station Callsign */
  7.     char digi[7];    /* AX.25 Digipeater Callsign */
  8.     int port;    /* Port to use */
  9.     int maxvc;    /* VC range, SVC 1-maxvc */
  10.     int l3w;    /* Packet Window */
  11.     int timeout;    /* Bad link timer */
  12.     int alt;    /* working var for the current routing alt set */
  13. };
  14.